home *** CD-ROM | disk | FTP | other *** search
- echo off
- echo ******** READ THE MANUAL BEFORE USING THIS ROUTINE *********
- echo Warning: Deduct-a-Matic records on diskette A will be erased after copying
- echo If you want to copy without erasing, use the "FETCH" program.
- echo To escape hit "Ctrl-C".
- echo Note: Records will be copied FROM drive A and TO the default drive (B or C).
- pause Strike any key when ready.....
- if exist a:d.l goto :normal
- echo There are no Deduct-a-Matic records on the diskette in drive A.
- goto :exit
- :normal
- if not exist d.l copy a:d.l dtemp.l
- if exist d.l copy a:d.l+d.l dtemp.l
- if exist dtemp.l goto :cont
- echo There is not enough room to empty the records onto this diskette.
- echo Please try another diskette with more room.
- goto :exit
- :cont
- del a:d.l
- copy dtemp.l d.l
- echo The records from the diskette in Drive A have been copied and erased.
- echo To empty another diskette hit the F3 key, then hit return when ready.
- :exit
- echo on